04a1c4976559441b7b3c4386030b6af46378b59a,bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/quickaccess/WizardProvider.java,WizardProvider,collectWizards,#IWizardCategory#List#,64
Before Change
private void collectWizards(IWizardCategory category, List<IWizardDescriptor> result) {
result.addAll(Arrays.asList(category.getWizards()));
IWizardCategory[] childCategories = category.getCategories();
for (int i = 0; i < childCategories.length; i++) {
collectWizards(childCategories[i], result);
}
}
After Change
private void collectWizards(IWizardCategory category, List<IWizardDescriptor> result) {
result.addAll(Arrays.asList(category.getWizards()));
for (IWizardCategory childCategory : category.getCategories()) {
collectWizards(childCategory, result);
}
}